golang.org/x/net/http2.Framer.wbuf (field)

32 uses

	golang.org/x/net/http2 (current package)
		frame.go#L296: 	wbuf []byte
		frame.go#L349: 	f.wbuf = append(f.wbuf[:0],
		frame.go#L364: 	length := len(f.wbuf) - frameHeaderLen
		frame.go#L368: 	_ = append(f.wbuf[:0],
		frame.go#L376: 	n, err := f.w.Write(f.wbuf)
		frame.go#L377: 	if err == nil && n != len(f.wbuf) {
		frame.go#L392: 	f.debugFramerBuf.Write(f.wbuf)
		frame.go#L401: func (f *Framer) writeByte(v byte)     { f.wbuf = append(f.wbuf, v) }
		frame.go#L402: func (f *Framer) writeBytes(v []byte)  { f.wbuf = append(f.wbuf, v...) }
		frame.go#L403: func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
		frame.go#L405: 	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
		frame.go#L713: 		f.wbuf = append(f.wbuf, byte(len(pad)))
		frame.go#L715: 	f.wbuf = append(f.wbuf, data...)
		frame.go#L716: 	f.wbuf = append(f.wbuf, pad...)
		frame.go#L1143: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		frame.go#L1144: 	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)
		frame.go#L1287: 	f.wbuf = append(f.wbuf, headerBlockFragment...)
		frame.go#L1396: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		frame.go#L1397: 	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)